home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 2848 / 2848.xpi / chrome / passwordexporter.jar / content / debug.js next >
Text File  |  2009-08-04  |  5KB  |  124 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Password Exporter
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  *    Justin Scott <fligtar@gmail.com>.
  18.  *    
  19.  * Portions created by the Initial Developer are Copyright (C) 2006
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s): (none)
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. /*
  39. This tool is accessed from the browser address bar at chrome://passwordexporter/content/debug.xul
  40. It is designed to help users solve their own problems because it's hard for me to troubleshoot the
  41. extension without seeing the password file, which I can't do.
  42. */
  43.  
  44. var passwordExporterDebug = {
  45.     linebreak: '',
  46.     
  47.     // Output some basic diagnostics
  48.     debug: function() {
  49.         var debug = document.getElementById('debug');
  50.         this.linebreak = passwordExporter.getLinebreak();
  51.         
  52.         debug.hidden = false;
  53.         
  54.         debug.value = 'Some basic information about this environment:' + this.linebreak + this.linebreak;
  55.         debug.value += this.getInfo();
  56.         debug.value += this.checkComponents();
  57.     },
  58.     
  59.     // returns userAgent info
  60.     getInfo: function() {
  61.         var debug = '';
  62.         
  63.         debug += 'userAgent: ' + navigator.userAgent + this.linebreak + this.linebreak;
  64.         
  65.         debug += 'Detected Firefox Version Equivalent: ' + passwordExporter.fxVersion + this.linebreak;
  66.         
  67.         debug += 'Detected as Thunderbird: ' + passwordExporter.isThunderbird + this.linebreak;
  68.         
  69.         return debug + this.linebreak;
  70.     },
  71.     
  72.     // Checks the existence of the relevant password/login components
  73.     checkComponents: function() {
  74.         var debug = 'Components:' + this.linebreak;
  75.         
  76.         if ("@mozilla.org/passwordmanager;1" in Components.classes)
  77.             debug += '@mozilla.org/passwordmanager;1: exists' + this.linebreak;
  78.         else
  79.             debug += '@mozilla.org/passwordmanager;1: does not exist' + this.linebreak;
  80.         
  81.         if ("@mozilla.org/login-manager;1" in Components.classes)
  82.             debug += '@mozilla.org/login-manager;1: exists' + this.linebreak;
  83.         else
  84.             debug += '@mozilla.org/login-manager;1: does not exist' + this.linebreak;
  85.         
  86.         if ("@mozilla.org/login-manager/storage/legacy;1" in Components.classes)
  87.             debug += '@mozilla.org/login-manager/storage/legacy;1: exists' + this.linebreak;
  88.         else
  89.             debug += '@mozilla.org/login-manager/storage/legacy;1: does not exist' + this.linebreak;
  90.         
  91.         if (Components.interfaces.nsIPasswordManager)
  92.             debug += 'nsIPasswordManager: exists' + this.linebreak;
  93.         else
  94.             debug += 'nsIPasswordManager: does not exist' + this.linebreak;
  95.         
  96.         if (Components.interfaces.nsIPasswordManagerInternal)
  97.             debug += 'nsIPasswordManagerInternal: exists' + this.linebreak;
  98.         else
  99.             debug += 'nsIPasswordManagerInternal: does not exist' + this.linebreak;
  100.         
  101.         if (Components.interfaces.nsIPassword)
  102.             debug += 'nsIPassword: exists' + this.linebreak;
  103.         else
  104.             debug += 'nsIPassword: does not exist' + this.linebreak;
  105.         
  106.         if (Components.interfaces.nsIPasswordInternal)
  107.             debug += 'nsIPasswordInternal: exists' + this.linebreak;
  108.         else
  109.             debug += 'nsIPasswordInternal: does not exist' + this.linebreak;
  110.         
  111.         if (Components.interfaces.nsILoginManager)
  112.             debug += 'nsILoginManager: exists' + this.linebreak;
  113.         else
  114.             debug += 'nsILoginManager: does not exist' + this.linebreak;
  115.             
  116.         if (Components.interfaces.nsILoginInfo)
  117.             debug += 'nsILoginInfo: exists' + this.linebreak;
  118.         else
  119.             debug += 'nsILoginInfo: does not exist' + this.linebreak;
  120.         
  121.         return debug + this.linebreak;
  122.     }
  123. };
  124.